/* Begin CSS Drop Down Menu */

#menuh-container
	{
	position: absolute;		
	top: 1em; /*This is for the positioning of the menu within the header box */
	left: 1em; /*This is for the positioning of the menu within the header box */
	}

/*menuh is the font size, style for all of the menu SD 13/10/2008. */
#menuh
	{
	font-size: 11pt;
	font-family: arial, helvetica, sans-serif;
	float:left; /*This is for the positioning of the menu should not be moved SD 08/10/2008*/
	margin:-3em; /*This is for the positioning of the menu should not be moved SD 08/10/2008*/
	margin-top: -1em; /*This is for the positioning of the menu SD 08/10/2008*/
	}	
	
/*This is for the links in the menu*/		
#menuh a
	{
	text-align:left; /*Requested by Hype for the text to be aligned left SD 13/10/2008*/
	display:block;
	white-space:nowrap;
	margin:0;
	padding: 0.3em;
	padding-left:15px; /* This is to match Hypes Design for Jan 08 SD*/
	padding-right:10px;  /* This is to match Hypes Design for Jan 08 SD*/
	}
/*The class below is the second menu level drop - other browsers have their own css for this class as there is a different in alot of the browsers SD 13/10/2008 */	
#menuh ul li ul li.begin{
 	margin-top:2.62em;
}	


/*The class below is for the first level menu  SD 08/10/2008 - */
#menuh a:link, #menuh a:visited, #menuh a:active	
	{
	text-decoration:none;
	color:#FFFFFF;
	}
	
#menuh a:hover	/* menu at mouse-over  inheriting the above styles as well. SD 13/10/2008 */
	{
	font-weight:bold;
	}	
	
/*The second level menu styles for links SD 13/10/2008*/	
#menuh ul li ul li a:link, #menuh ul li ul li a:visited, #menuh ul li ul li a:active	/* menu at rest */
	{
	background-color:#94D89C;
	border-bottom: 1px dotted #336633;
	}	
#menuh ul li ul li a:hover	/* menu at mouse-over  */
	{	
	background-color:#336633;
	}	
	
/*The third level menu styles for links SD 13/10/2008*/
#menuh ul li ul li ul li a:link, #menuh ul li ul li ul li a:visited, #menuh ul li ul li ul li a:active	/* menu at rest */
	{
	color:#FFFFFF;
	background-color:#009900;
	}	
#menuh ul li ul li ul li a:hover	/* menu at mouse-over  */
	{
	background-color: #336633;
	}		
	
	
#menuh a.top_parent, #menuh a.top_parent:hover  /* attaches down-arrow to all top-parents */
	{
	background-image: url(navdown_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
	
#menuh a.parent, #menuh a.parent:hover 	/* attaches side-arrow to all parents */
	{
	background-image: url(nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat;
	}
#menuh ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	}
#menuh li
	{
	position:relative;
    min-height: 1px; 			/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
	}

#menuh ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;
	width:9em; /*The width of all the menu boxes SD  13/10/2008 */
	}
#menuh ul ul ul
	{
	top:0;
	left:100%;
	}

div#menuh li:hover
	{
	cursor:pointer;
	z-index:100;
	}

div#menuh li:hover ul ul,
div#menuh li li:hover ul ul,
div#menuh li li li:hover ul ul,
div#menuh li li li li:hover ul ul
{display:none;}

div#menuh li:hover ul,
div#menuh li li:hover ul,
div#menuh li li li:hover ul,
div#menuh li li li li:hover ul
{display:block;}

/* End CSS Drop Down Menu */